home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / TCCLIB.ZIP / SCRPTR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-07-18  |  288 b   |  10 lines

  1. #define VIDMODE   *(unsigned char far *) 0x00449lu
  2. #define MONOSEG  0xb0000000L
  3. #define COLOR 0xb8000000L
  4. #define VIDSEG (unsigned char far *)((7 == VIDMODE) ? MONOSEG : COLOR )
  5.  
  6. unsigned char far *ScrPtr( int col, int row )
  7. {
  8.     return( VIDSEG + (--row * 160) + (--col << 1) );
  9. }
  10.